As with most programming languages, Kotlin supports if
for branching based
on a boolean condition.
You can learn more about this in:
Tags:
xxxxxxxxxx
2
val i = 3
3
4
if (i > 10) {
5
println("something")
6
}
7
else {
8
println("something else")
9
}